body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}
header {
    background-color: #ffffff;
}
.top-bar {
    background-color: #000000;
    color: #ffffff;
    text-align:right;
    padding: 10px 70px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.contact-info span {
    margin-left: 35px;
}
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
      float: left;
      position: relative;
      top: -20px;
}
.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
    padding: 0;
}
.nav-links li {
    display: inline-block;
    position: relative;
}
.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    display: block;
}
.dropbtn {
    cursor: pointer;
    font-size: large;
}

.dropdown-content {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #d2e3ee;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    transform: translateX(-20px);
    transition: visibility 0s, opacity 0.5s ease, transform 0.5s ease;
}

.dropdown-content a {
    color: rgb(1, 0, 26);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown-content.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
.show {
    display: block;
}

.contact-button {
    background-color: #22126d;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    width: 150px;
    height: 50px;
    border-radius: 8px;
    margin-left: 90px;
    font-weight: bold;
    position: relative;
    top: -15px;
}

.contact-button:hover {
    background-color: #2d1985f1;
}

.container {
    position: relative;
    text-align: center;
    padding: 20px;
    margin: 0 auto;
}
.background-image {
    background-image: url('https://media.istockphoto.com/id/1554639269/photo/macro-view-of-speaker-side-view-selective-focus.jpg?s=612x612&w=0&k=20&c=HhtYp9zXqj3Yms1nyHQI8GLnnNgXhtU5mVM4KzLP4rk=');
    height: 250px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.title {
    font-size: 2.5rem;
    color: #faf6f6;
    margin-top: 20px;
    font-weight: bolder;
}
.book-button {
    background-color: #0a0a0a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    }

.book-button:hover {
    background-color: #ebeaf0;
    color: #000000;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-color: rgba(54, 54, 54, 0.1); /* Adjust the background color and opacity as needed */
}
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}
.sound-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: auto;
}
.text-content {
    flex: 1;
    padding-right: 30px;
}
.text-content h1{
    font-size: 37px;
    font-weight: 900;
}

.text-content p {
    font-size: 18px;
    color: #0b032c;
}
.text-content p span {
     color: red; 
     font-weight: bold; 
     padding: 2px;   
}
.sound-pic {
    flex-shrink: 0;
    max-width: 300px; 
    margin-bottom: -100px;
}
.sound-pic img {
    max-width: 100%;
    height: 200px;
    margin-left: 30px;
}
.why-choose-us {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.why-choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
}
.why-choose-us h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
}
.why-choose-us h2::after {
    content: '';
    width: 70px;
    height: 5px;
    background-color: #ff6600;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}
.feature {
    background-color: #d2e5f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: calc(33.333% - 20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.feature:hover {
    transform: translateY(-10px);
}
.icon img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
    line-height: 1.6;
    color: #050d29;
}
.map-container iframe {
	width:100%;
    	height: 400px;
    	border: dashed;
    	border-radius: 8px;
}
	
.map-container {
    	display: flex;
    	justify-content: center;
    	width: 100%;
        border-radius: 10px;
}

.footer-container {
    background-color: #030303;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: scroll;
    height: 200px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 270px;
    line-height: 2.2rem;
}

.footer-content p {
    margin: 10px 0;
    font-size: 18px;
}
/* For small devices (phones) */
@media only screen and (max-width: 600px) {
    /* Styles for phones */
  }
  
  /* For medium devices (tablets) */
  @media only screen and (min-width: 601px) and (max-width: 768px) {
    /* Styles for tablets */
  }
  
  /* For larger devices (desktops, TVs) */
  @media only screen and (min-width: 769px) {
    /* Styles for desktops */
  }
  